home *** CD-ROM | disk | FTP | other *** search
Null Bytes Alternating | 1997-01-09 | 2.0 KB | 23 lines |
- '++LotusScript Development Environment:2:5:(Options):0:66
-
- '++LotusScript Development Environment:2:5:(Forward):0:1
- Declare Sub Keydown(Source As Fieldbox, Charcode As Long, Repeats As Integer, Flags As Integer, Overridedefault As Integer)
-
- '++LotusScript Development Environment:2:5:(Declarations):0:2
-
- '++LotusScript Development Environment:2:2:BindEvents:1:129
- Private Sub BindEvents(Byval Objectname_ As String)
- Static Source As FIELDBOX
- Set Source = Bind(Objectname_)
- On Event Keydown From Source Call Keydown
- End Sub
-
- '++LotusScript Development Environment:2:2:Keydown:1:12
- Sub Keydown(Source As Fieldbox, Charcode As Long, Repeats As Integer, Flags As Integer, Overridedefault As Integer)
- ' Keydown event for the fbxRoomName field box object on the Room Setup view
- ' When the user enters a keystroke in the Room Name field box,
- ' this script enables the Add button on the view.
-
- source.btnAdd.enabled = True
-
- End Sub ' Keydown event for the fbxRoomName field box object on the Room Setup view